home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 015 / laserjet.pat < prev    next >
Text File  |  1987-08-04  |  1KB  |  28 lines

  1. LASERJET 4.4's "Print Labels" option will print out an envelope
  2. in landscape mode using manual feed, after giving you the
  3. chance to edit an envelope template.  As written, the program
  4. seems to be set up for an LJ Plus (at least it isn't set up for
  5. the LaserJet II), because the envelope prints out with a top
  6. margin of 27 lines.  With the LJ II this makes it impossible to
  7. put the address on a manually-fed envelope.  To fix this,
  8. search for the string
  9.  
  10.     &l1o3h27E
  11.  
  12. and change the 27 to 14.  This string occurs twice in the
  13. program.  I found that everything worked when I changed only
  14. the first occurrence, but it's probably safest to change it
  15. both times.
  16.  
  17. You can do this with DEBUG.  Enter DEBUG LASERJET.COM, and then
  18. enter the following:
  19.  
  20.         e 9598 31 34
  21.         e cef2 31 34
  22.         w
  23.         q
  24.  
  25.  
  26. (Note added by Edward Mendelson, 71600,1200)
  27.  
  28.